home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / mtgrap1c / rect.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-29  |  669 b   |  30 lines

  1. /*****************************************************
  2. ; Filename     : rect.h
  3. ;
  4. ; Date         : 27-6-94
  5. ; Mod. Date    : 29-7-94
  6. ;
  7. ; Others    : Obtained from Ferraro
  8. ;        : VGA Trainer    (smith9@batis.bis.und.ac.za)
  9. ;        ; VGL20         (morley@camosun.bc.ca)
  10. ;****************************************************/
  11. #ifndef RECT_H
  12. #define RECT_H
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. void mtRect(int x1, int y1, int x2, int y2, int color);
  19. void mtCRect(int x1,int y1,int x2,int y2,int color);
  20.  
  21. void mtFillRect(int x1, int y1, int x2, int y2, int color);
  22. void mtCFillRect(int x1,int y1,int x2,int y2,int color);
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.  
  28. #endif RECT_H
  29.  
  30.